home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 1.toast / Sample Code / Games / DroneZone / DZThumbprint.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-28  |  329 b   |  17 lines  |  [TEXT/MPS ]

  1. /*
  2.  *    File:        DZThumbprint.h
  3.  *
  4.  *    Copyright © 1996 Apple Computer, Inc.
  5.  */
  6.  
  7. #ifndef __DZThumbprint__
  8. #define __DZThumbprint__
  9.  
  10. typedef enum TThumbprint {
  11.     kThumbprint_Dead        = 'dead',
  12.     kThumbprint_SelfDrone    = 'self',
  13.     kThumbprint_AutoDrone    = 'auto',
  14.     kThumbprint_BulletDrone    = 'bllt'
  15. } TThumbprint;
  16.  
  17. #endif /* __DZThumbprint__ */